use mktemp instead of tempfile.
authorØyvind Kolås <ok@src.gnome.org>
Wed, 27 Feb 2008 16:09:05 +0000 (16:09 +0000)
committerØyvind Kolås <ok@src.gnome.org>
Wed, 27 Feb 2008 16:09:05 +0000 (16:09 +0000)
* docs/Makefile.am: use mktemp instead of tempfile.

svn path=/trunk/; revision=284

ChangeLog
docs/Makefile.am

index 5cc67318304c6f153f96d6c85117c07c8bf28e9f..0a16d27ee869823a4810c5fb334c7e7abeb05ad3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-27  Øyvind Kolås  <pippin@gimp.org>
+
+       * docs/Makefile.am: use mktemp instead of tempfile.
+
 2008-02-27  Øyvind Kolås  <pippin@gimp.org>
 
        * extensions/Makefile.am: -I$(top_builddir) to be able to include
index b4d82e214d90fe444179199c9a069667d226b104..b18b22148fcf490e1841496e8255865660a18608 100644 (file)
@@ -53,7 +53,7 @@ index.html: index-static.html                    \
            Makefile.am
        echo -n "HTML: $@"
        cp $< $@ 
-       (which tempfile > /dev/null&& TMPFILE=`tempfile` || TMPFILE="/tmp/babl_build_tempfile" ;\
+       (which mktemp > /dev/null&& TMPFILE=`mktemp` || TMPFILE="/tmp/babl_build_tempfile" ;\
        export BABL_PATH="$(top_builddir)/extensions"; $(babl_html_dump) > $$TMPFILE;\
        $(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\
        rm -f $$TMPFILE )